home *** CD-ROM | disk | FTP | other *** search
/ Aminet 37 / Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso / Aminet / dev / lang / sofa.lha / sofa / smalleiffel / lib_se / native_jvm_invokevirtual.e < prev    next >
Text File  |  2000-03-25  |  2KB  |  71 lines

  1. --          This file is part of SmallEiffel The GNU Eiffel Compiler.
  2. --          Copyright (C) 1994-98 LORIA - UHP - CRIN - INRIA - FRANCE
  3. --            Dominique COLNET and Suzanne COLLIN - colnet@loria.fr
  4. --                       http://SmallEiffel.loria.fr
  5. -- SmallEiffel is  free  software;  you can  redistribute it and/or modify it
  6. -- under the terms of the GNU General Public License as published by the Free
  7. -- Software  Foundation;  either  version  2, or (at your option)  any  later
  8. -- version. SmallEiffel is distributed in the hope that it will be useful,but
  9. -- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. -- or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU General Public License
  11. -- for  more  details.  You  should  have  received a copy of the GNU General
  12. -- Public  License  along  with  SmallEiffel;  see the file COPYING.  If not,
  13. -- write to the  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. -- Boston, MA 02111-1307, USA.
  15. --
  16. class NATIVE_JVM_INVOKEVIRTUAL
  17.  
  18. inherit NATIVE_JVM;
  19.  
  20. creation make
  21.  
  22. feature
  23.  
  24.    use_current(er: EXTERNAL_ROUTINE): BOOLEAN is
  25.       do
  26.       end;
  27.  
  28.    jvm_mapping_function(rf8: RUN_FEATURE_8; bcn, name: STRING) is
  29.       local
  30.          space, idx: INTEGER;
  31.          ca: like code_attribute;
  32.       do
  33.          ca := code_attribute;
  34.          jvm.drop_target;
  35.          space := jvm.push_arguments;
  36.          idx := idx_methodref(rf8.base_feature);
  37.          space := rf8.result_type.jvm_stack_space - space;
  38.          ca.opcode_invokevirtual(idx,space);
  39.       end;
  40.  
  41.    jvm_define_function(rf8: RUN_FEATURE_8; bcn, name: STRING) is
  42.       do
  43.       end;
  44.  
  45.    jvm_mapping_procedure(rf7: RUN_FEATURE_7; bcn, name: STRING) is
  46.        local
  47.          space, idx: INTEGER;
  48.          ca: like code_attribute;
  49.       do
  50.          ca := code_attribute;
  51.          jvm.drop_target;
  52.          space := -jvm.push_arguments;
  53.          idx := idx_methodref(rf7.base_feature);
  54.          ca.opcode_invokevirtual(idx,space);
  55.       end;
  56.  
  57.    jvm_define_procedure(rf7: RUN_FEATURE_7; bcn, name: STRING) is
  58.       do
  59.       end;
  60.  
  61.    jvm_add_method_for_function(rf8: RUN_FEATURE_8; bcn, name: STRING) is
  62.       do
  63.       end;
  64.  
  65.    jvm_add_method_for_procedure(rf7: RUN_FEATURE_7; bcn, name: STRING) is
  66.       do
  67.       end;
  68.  
  69. end -- NATIVE_JVM_INVOKEVIRTUAL
  70.  
  71.